home *** CD-ROM | disk | FTP | other *** search
- ECHO off
- Rem *** RS.BAT: Establishes Personal REXX environment and invokes REXXSGML
- Rem and the RSDEMO program
-
- Rem *** Check for required argument to RSDEMO.REX
- IF %1.==. GOTO usage
- Rem *** Load the REXX Interrupt Manager
- RXINTMGR
- Rem *** Make the REXX Interpreter resident
- Rem *** (It will not load if already resident -- smart program!)
- REXX /R
- REXXSGML rsdemo.rex %1
- GOTO done
- :usage
- ECHO Usage: RS SGMLfile
- :done